home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
prog
/
hcn305.arj
/
GSXT_SCH.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-07-29
|
3KB
|
113 lines
unit GSXT_Sch;
{------------------------------------------------------------------------------
DBase Filters
Copyright (c) Richard F. Griffin
19 July 1993
102 Molded Stone Pl
Warner Robins, GA 31088
-------------------------------------------------------------
A unit for rapidly searching dBase Record Fields for a string.
Procedure is called as follows:
Result := SearchDBF(s, FNum, fromtop)
Where:
s = The string to search for
FNum = The record field to search
fromtop = Boolean true to start from the top of the file,
false to continue from the current record.
Result = Starting position of the found string in the
field, or zero if the string is not found.
The file in the selected file (using GSOBShel) will be searched for
the record field that matches the string s. Records will be read
through whatever filters are set (deleted records ignored, etc.).
When a match is found the starting location within the field is
returned and the file is positioned with the matching record as
the current record. If no match, zero is returned and the current
record is positioned to the initial position as when the call was
made.
NOTE THAT THIS TEST IS NOT CASE SENSITIVE!!
See TESTSCH1.PAS and TESTSCH2.PAS for an example of how to use the
routine.
-------------------------------------------------------------------------------}
interface
uses GSOB_Str, GSOBShel, GSOB_DBF, GSOB_Var;
Function SearchDBF(s : string; var FNum : word; fromtop: boolean): word;
implementation
Function SearchDBF(s : string; var FNum : word; fromtop: boolean): word;
var
BTable: string;
MTable: string;
crd : boolean;
ia : pointer;
lr : longint;
sloc: word;
i : integer;
Strt: word;
Size: word;
rnum: longint;
begin
if (FNum = 0) or (FNum > FieldCount) then
begin
SearchDBF := 0;
exit;
end;
BTable := AllCaps(s);
with DBFActive^ do
begin
StatusUpdate(StatusStart,StatusSearch,NumRecs);
lr := RecNo;
ia := IndexMaster;
IndexMaster := nil;
crd := CacheRead;
SetDBFCache(On);
Strt := 1;
if FNum > 1 then
for i := 1 to FNum-1 do
Strt := Strt + FieldLen(i);
Size := FieldLen(FNum);
if fromtop then GoTop else Skip(1);
rnum := RecNo;
sloc := 0;
while not File_EOF and (sloc = 0) do
begin
move(CurRecord^[Strt],MTable[1],Size);
MTable[0] := chr(Size);
MTable := AllCaps(MTable);
sloc := pos(BTable,MTable);
if sloc = 0 then
begin
inc(rnum);
StatusUpdate(StatusSearch,rnum,0);
GetRec(rnum);
end;
end;
SetDBFCache(crd);
IndexMaster := ia;
if sloc > 0 then
Go(rnum) {Reset for index}
else
GO(lr);
SearchDBF := sloc;
StatusUpdate(StatusStop,0,0);
end;
end;
end.